🛠️ All DevTools
Showing 2201–2220 of 4383 tools
Last Updated
April 29, 2026 at 12:01 AM
GitSocial
Product Hunt[Other] Git-native social networking GitSocial - decentralized open source social network built entirely on Git.
LPS Tool
Product Hunt[Testing] Load, performance & stress testing LPS (Load, Performance & Stress) is an open-source tool that makes load testing simple, readable, and powerful. Define tests in YAML — no coding needed. Run distributed tests, monitor live dashboards, and simulate real traffic with smart iteration modes. Built by a Microsoft engineer with 13+ years in API Management & Security to make enterprise-grade testing accessible to everyone.
Fabrica
Product Hunt[Other] Lovable for internal apps and dashboards Fabrica connects to your internal databases and tooling and lets you build any kind of internal software (dashboards, apps, etc) by just chatting with AI.
NPM flooded with malicious packages downloaded more than 86k times
Hacker News (score: 191)[Other] NPM flooded with malicious packages downloaded more than 86k times
Independently verifying Go's reproducible builds
Hacker News (score: 52)[Other] Independently verifying Go's reproducible builds
Show HN: SQLite Graph Ext – Graph database with Cypher queries (alpha)
Hacker News (score: 13)[Database] Show HN: SQLite Graph Ext – Graph database with Cypher queries (alpha) I've been working on adding graph database capabilities to SQLite with support for the Cypher query language. As of this week, both CREATE and MATCH operations work with full relationship support.<p>Here's what it looks like:<p><pre><code> import sqlite3 conn = sqlite3.connect(":memory:") conn.load_extension("./libgraph.so") conn.execute("CREATE VIRTUAL TABLE graph USING graph()") # Create a social network conn.execute("""SELECT cypher_execute(' CREATE (alice:Person {name: "Alice", age: 30}), (bob:Person {name: "Bob", age: 25}), (alice)-[:KNOWS {since: 2020}]->(bob) ')""") # Query the graph with relationship patterns conn.execute("""SELECT cypher_execute(' MATCH (a:Person)-[r:KNOWS]->(b:Person) WHERE a.age > 25 RETURN a, r, b ')""") </code></pre> The interesting part was building the complete execution pipeline - lexer, parser, logical planner, physical planner, and an iterator-based executor using the Volcano model. All in C99 with no dependencies beyond SQLite.<p>What works now: - Full CREATE: nodes, relationships, properties, chained patterns (70/70 openCypher TCK tests) - MATCH with relationship patterns: (a)-[r:TYPE]->(b) with label and type filtering - WHERE clause: property comparisons on nodes (=, >, <, >=, <=, <>) - RETURN: basic projection with JSON serialization - Virtual table integration for mixing SQL and Cypher<p>Performance: - 340K nodes/sec inserts (consistent to 1M nodes) - 390K edges/sec for relationships - 180K nodes/sec scans with WHERE filtering<p>Current limitations (alpha): - Only forward relationships (no `<-[r]-` or bidirectional `-[r]-`) - No relationship property filtering in WHERE (e.g., `WHERE r.weight > 5`) - No variable-length paths yet (e.g., `[r*1..3]`) - No aggregations, ORDER BY, property projection in RETURN - Must use double quotes for strings: {name: "Alice"} not {name: 'Alice'}<p>This is alpha - API may change. But core graph query patterns work! The execution pipeline handles CREATE/MATCH/WHERE/RETURN end-to-end.<p>Next up: bidirectional relationships, property projection, aggregations. Roadmap targets full Cypher support by Q1 2026.<p>Built as part of Agentflare AI, but it's standalone and MIT licensed. Would love feedback on what to prioritize.<p>GitHub: <a href="https://github.com/agentflare-ai/sqlite-graph" rel="nofollow">https://github.com/agentflare-ai/sqlite-graph</a><p>Happy to answer questions about the implementation!
Encoding x86 Instructions
Hacker News (score: 41)[Other] Encoding x86 Instructions
Show HN: GPU-Based Autorouting for KiCad
Show HN (score: 5)[Other] Show HN: GPU-Based Autorouting for KiCad This project began when I decided it would be easier to write an autorouter than route a 8000+ net backplane by hand.<p>This is a KiCad plugin with a few different algorithms, the coolest of which is a 'Manhattan routing grid' autorouter that routes along orthogonal traces. The basic idea was to steal an algorithm from FPGA routing and apply it to PCBs. I'm using CuPy for speeding up the routing; CPU-bound is at least 10x slower than the GPU version.<p>This is in a very pre-alpha state, but it does _technically_ work. It's not great by any measure but then again it is an autorouter.<p>I have a writeup with the how and why it was made: <a href="https://bbenchoff.github.io/pages/OrthoRoute.html" rel="nofollow">https://bbenchoff.github.io/pages/OrthoRoute.html</a><p>And a video showing it route a 512-net backplane in just over 2 minutes: <a href="https://www.youtube.com/watch?v=KXxxNQPTagA" rel="nofollow">https://www.youtube.com/watch?v=KXxxNQPTagA</a><p>This is very cool and one of the first good uses of the KiCad IPC API that was released a few months ago. If this sounds interesting and useful, PRs and issues welcome.
Show HN: Oblivious HTTP for Go
Show HN (score: 9)[Other] Show HN: Oblivious HTTP for Go I couldn't find a suitable go implementation for Oblivious HTTP Client & Gateway (RFC 9458). So, I'm open sourcing ours.<p>Some background: OHTTP is a protocol that hides who you are from the data you send - if you've ever used products of Apple, Mozilla, Fastly, or Cloudflare (to name a few) you probably used OHTTP.<p>Key Features:<p>- implemented as http.RoundTripper<p>- supports chunked transfer encoding<p>- customizable HPKE (e.g., for custom hardware-based encryption)<p>- built on top of twoway and bhttp libraries<p>Repo: <a href="https://github.com/confidentsecurity/ohttp" rel="nofollow">https://github.com/confidentsecurity/ohttp</a><p>Detail: <a href="https://blog.confident.security/ohttp/" rel="nofollow">https://blog.confident.security/ohttp/</a><p>Explainer: <a href="https://support.mozilla.org/en-US/kb/ohttp-explained" rel="nofollow">https://support.mozilla.org/en-US/kb/ohttp-explained</a><p>Specs: <a href="https://datatracker.ietf.org/doc/rfc9458/" rel="nofollow">https://datatracker.ietf.org/doc/rfc9458/</a> , <a href="https://datatracker.ietf.org/doc/draft-ietf-ohai-chunked-ohttp/" rel="nofollow">https://datatracker.ietf.org/doc/draft-ietf-ohai-chunked-oht...</a><p>Feedback welcome!
microsoft/Web-Dev-For-Beginners
GitHub Trending[Other] 24 Lessons, 12 Weeks, Get Started as a Web Developer
SpiderMonkey Garbage Collector
Hacker News (score: 23)[Other] SpiderMonkey Garbage Collector
GoMask.ai
Product Hunt[Testing] Instant compliant test data for engineering teams Test data bottlenecks kill velocity. Teams wait days for data refreshes or secretly use production. GoMask delivers instant, compliant test data through schema-aware masking and AI synthesis. Minutes, not days. Compliance built-in, not bolted on.
Lightning
Product Hunt[IDE/Editor] AI code editor for PyTorch development on GPU workspaces The new AI Code Editor brings AI directly into Lightning Studios and Notebooks. Developers can tap into PyTorch-focused “experts” for training, inference, or RL tasks to build, debug, optimize, and deploy code faster inside a single cloud-native environment.
ChetakAI
Product Hunt[Other] One workspace where AI, code, and teams work together AI workspace for teams and devs. It connects your code, tools, and teammates in one place — so you can build, refactor, and ship together without context-switching.
GitHub Mission Control
Product Hunt[Other] Assign, steer, and track copilot coding agent tasks GitHub Mission Control is a unified command center that follows you wherever you work. It’s not a single destination; it’s a consistent interface across GitHub, VS Code, mobile, and the CLI that lets you direct, monitor, and manage every AI-driven task. With mission control, you can choose from a fleet of agents, assign them work in parallel, and track their progress from any device.
Zoer
Product Hunt[Other] Build full-stack apps with AI from Database first Zoer is an AI-powered platform that builds full-stack apps in minutes — complete with auto-generated database, authentication, responsive UI, and backend logic. Just describe your idea, and let AI handle the coding, structuring, and integration.
Glucose in VS Code
Product Hunt[Other] Your Glucose Levels. Right in Your IDE. Visual Code Extensions to display CGM blood glucose readings in your Visual Studio Code status bar.
FakerFill
Product Hunt[Other] Fill forms instantly with fake data Save hours of testing time. Instantly fill web forms with realistic fake data — powered by Faker.js. A free browser extension for developers and QA professionals.
NoBsResume
Product Hunt[Other] Free multilingual resume builder in 64 languages Create professional resumes in 64 languages. No registration required, AI-powered text enhancement, and instant PDF download. Build your perfect CV in minutes.
Jordium GanttChart Vue3
Product Hunt[Other] A modern, customizable GanttChart component. An open-source Gantt chart component built with Vue 3 and TypeScript. Easily add timeline visualization, task scheduling, and drag-and-drop interaction to your project management apps. 🎬 Live Demo now available! Try it here 👉https://nelson820125.github.io/jordium-gantt-vue3